home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 17 / AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso / Rexx / Reminder.rexx < prev    next >
OS/2 REXX Batch file  |  1997-11-08  |  278b  |  11 lines

  1. /* REMINDER AREXX SCRIPT v1.0 */
  2.  
  3.     LF= '0a'x
  4.  
  5.     arg eventtext
  6.     if ~show('L','rexxreqtools.library') then
  7.             call addlib("rexxreqtools.library", 0, -30, 0)
  8.  
  9.     call rtezrequest("+ + +  R E M I N D E R  + + +"||LF||""||LF||eventtext, "Okay", , "rt_reqpos = reqpos_centerscr")
  10.  
  11.